delegate$19766$ - ترجمة إلى اليونانية
Diclib.com
قاموس ChatGPT
أدخل كلمة أو عبارة بأي لغة 👆
اللغة:     

ترجمة وتحليل الكلمات عن طريق الذكاء الاصطناعي ChatGPT

في هذه الصفحة يمكنك الحصول على تحليل مفصل لكلمة أو عبارة باستخدام أفضل تقنيات الذكاء الاصطناعي المتوفرة اليوم:

  • كيف يتم استخدام الكلمة في اللغة
  • تردد الكلمة
  • ما إذا كانت الكلمة تستخدم في كثير من الأحيان في اللغة المنطوقة أو المكتوبة
  • خيارات الترجمة إلى الروسية أو الإسبانية، على التوالي
  • أمثلة على استخدام الكلمة (عدة عبارات مع الترجمة)
  • أصل الكلمة

delegate$19766$ - ترجمة إلى اليونانية

TYPE-SAFE FUNCTION POINTER USED BY THE MICROSOFT COMMON LANGUAGE INFRASTRUCTURE
Anonymous delegate; Delegates (.NET); Multicast delegate; Multicast delegation; Delegate (.NET); Delegate (object-oriented programming); Singlecast delegate

delegate      
v. εξουσιοδοτώ, αναθέτω, αποστέλλω σαν αντιπρόσωπο
permanent representative         
HEAD OF A DIPLOMATIC MISSION TO AN INTERNATIONAL ORGANISATION
Permanent Delegate; Permanent Representatives; Permanent Representative; Perm rep; Permanent delegate
μόνιμος αντιπρόσωπος

تعريف

delegate
¦ noun 'd?l?g?t a person sent or authorized to represent others, in particular a representative sent to a conference.
?a member of a committee.
¦ verb 'd?l?ge?t entrust (a task or responsibility) to another person.
?authorize (someone) to act as a representative or on one's behalf: Edward was delegated to meet new arrivals.
Derivatives
delegable 'd?l?g?b(?)l adjective
delegator noun
Origin
ME: from L. delegatus 'sent on a commission', from delegare, from de- 'down' + legare 'depute'.

ويكيبيديا

Delegate (CLI)

A delegate is a form of type-safe function pointer used by the Common Language Infrastructure (CLI). Delegates specify a method to call and optionally an object to call the method on. Delegates are used, among other things, to implement callbacks and event listeners. A delegate object encapsulates a reference to a method. The delegate object can then be passed to code that can call the referenced method, without having to know at compile time which method will be invoked.

A multicast delegate is a delegate that points to several methods. Multicast delegation is a mechanism that provides functionality to execute more than one method. There is a list of delegates maintained internally, and when the multicast delegate is invoked, the list of delegates is executed.

In C#, delegates are often used to implement callbacks in event driven programming. For example, a delegate may be used to indicate which method should be called when the user clicks on some button. Delegates allow the programmer to notify several methods that an event has occurred.